bitkeeper revision 1.1680 (42a4100bIstutWsVAoi7aPO8tLbFkA)
authorcl349@firebug.cl.cam.ac.uk <cl349@firebug.cl.cam.ac.uk>
Mon, 6 Jun 2005 08:57:47 +0000 (08:57 +0000)
committercl349@firebug.cl.cam.ac.uk <cl349@firebug.cl.cam.ac.uk>
Mon, 6 Jun 2005 08:57:47 +0000 (08:57 +0000)
xc_load_elf.c, xc_load_bin.c:
  Fix missing rename (xc_*_probe -> probe_*) from previous commit.
Signed-off-by: Christian Limpach <Christian.Limpach@cl.cam.ac.uk>
tools/libxc/xc_load_bin.c
tools/libxc/xc_load_elf.c

index 21b3e5ce5117e9cbcbd1523781f1ca031195c728..965ccd08da632d3d63c6b1d73b2dd989248b5329 100644 (file)
@@ -108,9 +108,9 @@ loadbinimage(
     char *image, unsigned long image_size, int xch, u32 dom,
     unsigned long *parray, struct domain_setup_info *dsi);
 
-int xc_bin_probe(char *image,
-                 unsigned long image_size,
-                 struct load_funcs *load_funcs)
+int probe_bin(char *image,
+             unsigned long image_size,
+             struct load_funcs *load_funcs)
 {
     if ( NULL == findtable(image, image_size) )
     {
index c4b93e53a8a066abd906a19c7b6338c73d59f25b..bc46636d75a0c11f5bf44ce5c2eba95ad892d4bf 100644 (file)
@@ -29,9 +29,9 @@ loadelfsymtab(
     char *image, int xch, u32 dom, unsigned long *parray,
     struct domain_setup_info *dsi);
 
-int xc_elf_probe(char *image,
-                 unsigned long image_size,
-                 struct load_funcs *load_funcs)
+int probe_elf(char *image,
+             unsigned long image_size,
+             struct load_funcs *load_funcs)
 {
     Elf_Ehdr *ehdr = (Elf_Ehdr *)image;